home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / minix / up1510b.tgz / up1510b / src / lib / posix / _exit.c next >
C/C++ Source or Header  |  1990-07-19  |  121b  |  8 lines

  1. #include <lib.h>
  2.  
  3. PUBLIC void _exit(status)
  4. int status;
  5. {
  6.   callm1(MM, EXIT, status, 0, 0, NIL_PTR, NIL_PTR, NIL_PTR);
  7. }
  8.